GroupWidth Property (BoxWhisker<T>)
In This Topic
Gets or sets a value that determines the group width as a percentage for the Box and Whisker chart. The default value for this property is 0.8. The min value is 0 and max value is 1.
Syntax
'Declaration
<System.ComponentModel.DefaultValueAttribute(0.8)>
Public Property GroupWidth As System.Single
'Usage
Dim instance As BoxWhisker(Of T)
Dim value As System.Single
instance.GroupWidth = value
value = instance.GroupWidth
[System.ComponentModel.DefaultValue(0.8)]
public System.float GroupWidth {get; set;}
public read-write property GroupWidth: System.Single;
System.ComponentModel.DefaultValueAttribute(0.8)
public function get,set GroupWidth : System.float
[System.ComponentModel.DefaultValue(0.8)]
public: __property System.float get_GroupWidth();
public: __property void set_GroupWidth(
System.float value
);
[System.ComponentModel.DefaultValue(0.8)]
public:
property System.float GroupWidth {
System.float get();
void set ( System.float value);
}
See Also